home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / libopenraw1.postrm < prev    next >
Encoding:
Text File  |  2010-08-18  |  386 b   |  27 lines

  1. #!/bin/sh
  2. # postrm script for libopenraw
  3.  
  4. set -e
  5.  
  6. case "$1" in
  7.     purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  8.         ldconfig
  9.     ;;
  10.  
  11.     *)
  12.         echo "postrm called with unknown argument \`$1'" >&2
  13.         exit 1
  14.     ;;
  15. esac
  16.  
  17. # Automatically added by dh_makeshlibs
  18. if [ "$1" = "remove" ]; then
  19.     ldconfig
  20. fi
  21. # End automatically added section
  22.  
  23.  
  24. exit 0
  25.  
  26.  
  27.